home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / os2 / bgfax160.zip / SEND.BAT < prev    next >
DOS Batch File  |  1996-06-10  |  690b  |  21 lines

  1. @echo off
  2. rem
  3. rem  To use this batch file to send ASCII messages to a remote fax
  4. rem  location, from the DOS prompt, type "SEND filename.txt phonenumber"
  5. rem  Example: SEND HELLO.TXT 555-1212
  6. rem
  7. rem  If you have not yet selected the com port, etc., modify BGFAX.CNF
  8. rem
  9. SET BGFAX=C:\BGFAX
  10. rem
  11. rem       change the above variable to the path of BGFAX program and CNF file
  12. rem
  13. MAKEFAX %1 OUTPUT.FAX /80
  14. rem
  15. rem  The /80 on Makefax uses 80-column line width, /132 is also available
  16. rem  If neither /80 or /132 are present, it assumes a 100 column width
  17. rem
  18. BGFAX /SEND:9600 OUTPUT.FAX %2 %3 %4 %5 %6 %7 %8 %9
  19. rem
  20. rem If BGFAX is SUCCESSFUL, it will exit with errorlevel 5
  21.